1. zconf.h is modified to include our config.h
2. gzlib.c is modified to resolve a seek problem with uncompressed files on windows platforms build with mingw32 gcc.
see gzlib.patch
-3. inflatte.c: fix hyper Warning inflateMark() about shifting a negative number - shift, then negate instead.
-
+3. inflate.c: Fix hyperctive warning for inflateMark() about shifting a negative number - shift, then negate instead.
{
struct inflate_state FAR *state;
// Begin GPSBabel
-//Orig
+// Orig
// if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
// Fix
if (strm == Z_NULL || strm->state == Z_NULL) return -(1L << 16);